home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / C and C++ / GNU Chess 3.0 / Sources TC 4.0 / update.c < prev    next >
Text File  |  1991-04-23  |  8KB  |  340 lines

  1. /*
  2.   Mac interface for GNU Chess
  3.  
  4.   Revision: 10 Feb 1991
  5.  
  6.   Copyright (C) 1986, 1987, 1988 Free Software Foundation, Inc.
  7.   Copyright (c) 1991  Airy ANDRE
  8.  
  9.     expanded game save, list, and restore features
  10.     optional auto-updating of positional information
  11.  
  12.   This file is part of CHESS.
  13.  
  14.   CHESS is distributed in the hope that it will be useful,
  15.   but WITHOUT ANY WARRANTY.  No author or distributor
  16.   accepts responsibility to anyone for the consequences of using it
  17.   or for whether it serves any particular purpose or works at all,
  18.   unless he says so in writing.  Refer to the CHESS General Public
  19.   License for full details.
  20.  
  21.   Everyone is granted permission to copy, modify and redistribute
  22.   CHESS, but only under the conditions described in the
  23.   CHESS General Public License.   A copy of this license is
  24.   supposed to have been given to you along with CHESS so you
  25.   can know your rights and responsibilities.  It should be in a
  26.   file named COPYING.  Among other things, the copyright notice
  27.   and this notice must be preserved on all copies.
  28.   */
  29.  
  30. #include <stdio.h>
  31. #include <DragMgr.h>
  32. #include <pascal.h>
  33. #include <SANE.h>
  34. #include "math.h"
  35.  
  36. #include "gnuchess.h"
  37. #include "macintf.h"
  38. #include "rsrc.h"
  39.  
  40. /* Redraw the Window */
  41. pascal void UpdateGraphic(WindowPtr theWindow, int ItemNo)
  42. {
  43.      GrafPtr SavePort;
  44.  
  45.     if (ItemNo==1) {
  46.         GetPort(&SavePort);
  47.         SetPort(WindBoard);
  48.         CopyBits(&OffScreenBits,&WindBoard->portBits,&chessRectOff,&chessRectOff,
  49.                         srcCopy,0L);
  50.         SetPort(SavePort);
  51.     }
  52. }
  53.  
  54.  
  55. /* Redraw the clocks */
  56. pascal void UpdateChronos(WindowPtr theWindow, int ItemNo)
  57. {
  58.  
  59.     GrafPtr SavePort;
  60.     int i,j;
  61.      Rect r;
  62.     char time[9];
  63.  
  64.       short h, m, s;
  65.   
  66.   
  67.     GetPort(&SavePort);
  68.     SetPort(WindThink);
  69.  
  70.     i = (nameRec.right-nameRec.left)/2;
  71.  
  72.     if (ItemNo) {
  73.         SetRect(&r,nameRec.left,nameRec.top,nameRec.left+i,nameRec.bottom);
  74.         FillRect(&nameRec,whitePat);
  75.         SetRect(&r,nameRec.left+i,nameRec.top,nameRec.right,nameRec.bottom);
  76.         FillRect(&r,blackPat);
  77.     }
  78.     
  79.     if (TCflag[white])
  80.     {
  81.       if (towho == white) {
  82.               h = (TimeControl.clock[white] - et) / 3600;
  83.               m = ((TimeControl.clock[white] - et) / 60) % 60;
  84.               s = (TimeControl.clock[white] - et) % 60;
  85.       } else {
  86.               h = TimeControl.clock[white] / 3600;
  87.               m = (TimeControl.clock[white] / 60) % 60;
  88.               s = TimeControl.clock[white] % 60;
  89.       }
  90.     } else
  91.   if (towho == white) {
  92.               h = et / 3600;
  93.               m = (et / 60) % 60;
  94.               s = et % 60;
  95.   } else {
  96.               h = TimeControl.clock[white] / 3600;
  97.               m = (TimeControl.clock[white] / 60) % 60;
  98.               s = TimeControl.clock[white] % 60;
  99.   }
  100.  
  101.   if (h < 0)
  102.     h = 0;
  103.   if (m < 0)
  104.     m = 0;
  105.   if (s < 0)
  106.     s = 0;
  107.  
  108.     time[0] = 8;
  109.     time[1] = '0'+h/10;
  110.     time[2] = '0'+h%10;
  111.     time[3] = ':';
  112.     time[4] = '0'+m/10;
  113.     time[5] = '0'+m%10;
  114.     time[6] = ':';
  115.     time[7] = '0'+s/10;
  116.     time[8] = '0'+s%10;
  117.     TextMode(srcCopy);
  118.     MoveTo(nameRec.left+i-5-StringWidth(time),nameRec.top+15);
  119.     DrawString(time);
  120.     
  121.   if (TCflag[black])
  122.     {
  123.       if (towho == black) {
  124.               h = (TimeControl.clock[black] - et) / 3600;
  125.               m = ((TimeControl.clock[black] - et) / 60) % 60;
  126.               s = (TimeControl.clock[black] - et) % 60;
  127.       } else {
  128.               h = TimeControl.clock[black] / 3600;
  129.               m = (TimeControl.clock[black] / 60) % 60;
  130.               s = TimeControl.clock[black] % 60;
  131.       }
  132.     } else
  133.   if (towho == black) {
  134.            h = et / 3600;
  135.           m = (et / 60) % 60;
  136.           s = et % 60;
  137.   } else {
  138.               h = TimeControl.clock[black] / 3600;
  139.               m = (TimeControl.clock[black] / 60) % 60;
  140.               s = TimeControl.clock[black] % 60;
  141.   }
  142.   
  143.   if (h < 0)
  144.     h = 0;
  145.   if (m < 0)
  146.     m = 0;
  147.   if (s < 0)
  148.     s = 0;
  149.  
  150.     time[0] = 8;
  151.     time[1] = '0'+h/10;
  152.     time[2] = '0'+h%10;
  153.     time[3] = ':';
  154.     time[4] = '0'+m/10;
  155.     time[5] = '0'+m%10;
  156.     time[6] = ':';
  157.     time[7] = '0'+s/10;
  158.     time[8] = '0'+s%10;
  159.     TextMode(notSrcCopy);
  160.     MoveTo(nameRec.right-5-StringWidth(time),nameRec.top+15);
  161.     DrawString(time);
  162.  
  163.      SetPort(SavePort);         
  164. }
  165.  
  166. pascal void UpdateMsg(WindowPtr theWindow, int ItemNo)
  167. {
  168.      GrafPtr SavePort;
  169.      int val;
  170.      int sq;
  171.      Str255 str;
  172.      
  173.      GetPort(&SavePort);
  174.     SetPort(WindThink);
  175.     FrameRect(&MsgFRec);
  176.     
  177.     MoveTo(MsgRec.left+1,MsgRec.top+16);
  178.     TextMode(srcCopy);
  179.     MoveTo(MsgRec.right-5-StringWidth(Msg),MsgRec.top+15);
  180.     FillRect(&MsgRec,whitePat);
  181.     DrawString(Msg);
  182.  
  183.     SetPort(SavePort);
  184. }
  185.  
  186. pascal void UpdateThink(WindowPtr theWindow, int ItemNo)
  187. {
  188.      GrafPtr SavePort;
  189.      int num = ItemNo - 2;
  190.      int i,h,v;
  191.      Str255 *tm = ThinkMove[num];
  192.      
  193.      GetPort(&SavePort);
  194.     SetPort(WindThink);
  195.     FrameRect(&ThinkFRec[num]);
  196.     
  197.     h = ThinkRec[num].left+2;
  198.     v = ThinkRec[num].top+15;
  199.     TextMode(srcCopy);
  200.     for (i = 0; i <= maxThink; i++)
  201.     if (tm[i][0])
  202.     {
  203.         MoveTo(h, v);
  204.         DrawString(tm[i]);
  205.         v += 12;
  206.     } else break;
  207.  
  208.     SetPort(SavePort);
  209. }
  210.  
  211. pascal void UpdateValue(WindowPtr theWindow, int ItemNo)
  212. {
  213.      GrafPtr SavePort;
  214.      Str255 str;
  215.      
  216.      GetPort(&SavePort);
  217.     SetPort(WindThink);
  218.     FrameRect(&ValueFRec);
  219.     if (showvalue) {
  220.         TextMode(srcCopy);
  221.         NumToString(theScore, str);
  222.         FillRect(&ValueRec,whitePat);
  223.         MoveTo(ValueRec.right-5-StringWidth(str),ValueRec.top+15);
  224.         DrawString(str);
  225.     } else FillRect(&ValueRec,whitePat);
  226.     SetPort(WindThink);
  227. }
  228.  
  229. pascal void UpdateCase(WindowPtr theWindow, int ItemNo)
  230. {
  231.      GrafPtr SavePort;
  232.      
  233.     GetPort(&SavePort);
  234.     SetPort(WindBoard);
  235.     if (MouseX)
  236.     {
  237.         TextMode(srcCopy);
  238.         MoveTo(CaseRec.left+5,CaseRec.top+15);
  239.         FillRect(&CaseRec,whitePat);
  240.         DrawChar(" abcdefgh"[MouseX]);
  241.         DrawChar(" 12345678"[MouseY]);
  242.     } else FillRect(&CaseRec,whitePat);
  243.     SetPort(SavePort);
  244. }
  245.  
  246. pascal void UpdateListe(WindowPtr theWindow, int ItemNo)
  247. {
  248.     LUpdate(WindList->visRgn, List);
  249. }
  250.  
  251. void UpdateMenus()
  252. {
  253.     int i;
  254.     int moves, minutes;
  255.     int Item_No;
  256.     
  257.     if (GameCnt >= 0)
  258.         EnableItem(GetMHandle(EditMenu), 1);
  259.     else
  260.         DisableItem(GetMHandle(EditMenu), 1);
  261.     
  262.     if ((computer != player) && hint)
  263.         EnableItem(GetMHandle(OptionsMenu), 9);
  264.     else
  265.         DisableItem(GetMHandle(OptionsMenu), 9);
  266.     
  267.     if (computer == player)
  268.         EnableItem(GetMHandle(OptionsMenu), 10);
  269.     else
  270.         DisableItem(GetMHandle(OptionsMenu), 10);
  271.     
  272.     moves = TCmoves[white];
  273.     minutes = TCminutes[white];
  274.     if ((moves == 60) && (minutes == 5)) Item_No = 1;
  275.     else
  276.     if ((moves == 60) && (minutes == 15)) Item_No = 2;
  277.     else
  278.     if ((moves == 60) && (minutes == 30)) Item_No = 3;
  279.     else
  280.     if ((moves == 40) && (minutes == 30)) Item_No = 4;
  281.     else
  282.     if ((moves == 40) && (minutes == 60)) Item_No = 5;
  283.     else
  284.     if ((moves == 40) && (minutes == 120)) Item_No = 6;
  285.     else
  286.     if ((moves == 40) && (minutes == 240)) Item_No = 7;
  287.     else
  288.     if ((moves == 1) && (minutes == 15)) Item_No = 8;
  289.     else
  290.     if ((moves == 1) && (minutes == 60)) Item_No = 9;
  291.     else
  292.     if ((moves == 1) && (minutes == 600)) Item_No = 10;
  293.     else Item_No = 12;
  294.  
  295.     for (i=1; i<=12; i++)
  296.         CheckItem(GetMHandle(WhiteMenu), i, i==Item_No);
  297.  
  298.     moves = TCmoves[black];
  299.     minutes = TCminutes[black];
  300.     if ((moves == 60) && (minutes == 5)) Item_No = 1;
  301.     else
  302.     if ((moves == 60) && (minutes == 15)) Item_No = 2;
  303.     else
  304.     if ((moves == 60) && (minutes == 30)) Item_No = 3;
  305.     else
  306.     if ((moves == 40) && (minutes == 30)) Item_No = 4;
  307.     else
  308.     if ((moves == 40) && (minutes == 60)) Item_No = 5;
  309.     else
  310.     if ((moves == 40) && (minutes == 120)) Item_No = 6;
  311.     else
  312.     if ((moves == 40) && (minutes == 240)) Item_No = 7;
  313.     else
  314.     if ((moves == 1) && (minutes == 15)) Item_No = 8;
  315.     else
  316.     if ((moves == 1) && (minutes == 60)) Item_No = 9;
  317.     else
  318.     if ((moves == 1) && (minutes == 600)) Item_No = 10;
  319.     else Item_No = 12;
  320.     
  321.     for (i=1; i<=12; i++)
  322.         CheckItem(GetMHandle(BlackMenu), i, i==Item_No);
  323.  
  324.     CheckItem(GetMHandle(PlayerMenu), 1, !bothsides && (opponent == white)
  325.                                          && (computer == black) && !force);
  326.     CheckItem(GetMHandle(PlayerMenu), 2, !bothsides && (opponent == black)
  327.                                          && (computer == white) && !force);
  328.     CheckItem(GetMHandle(PlayerMenu), 3, bothsides && !force);
  329.     CheckItem(GetMHandle(PlayerMenu), 4, !bothsides && force);
  330.     
  331.     CheckItem(GetMHandle(OptionsMenu), 1, easy);
  332.     CheckItem(GetMHandle(OptionsMenu), 2, reverse);
  333.     CheckItem(GetMHandle(OptionsMenu), 3, anim);
  334.     CheckItem(GetMHandle(OptionsMenu), 4, dither!=0);
  335.     CheckItem(GetMHandle(OptionsMenu), 5, post);
  336.     CheckItem(GetMHandle(OptionsMenu), 6, showvalue);
  337.     CheckItem(GetMHandle(OptionsMenu), 7, hashflag);
  338.  
  339. }
  340.